From 0831896293f7f24b0e7acdbb250a8b10751491ba Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Sun, 3 Dec 2006 17:44:14 +0000 Subject: [PATCH] [XEN] Fix 32-bit build. Signed-off-by: Keir Fraser --- xen/include/asm-x86/hvm/hvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/asm-x86/hvm/hvm.h b/xen/include/asm-x86/hvm/hvm.h index 20373b0ec9..13ee040fdb 100644 --- a/xen/include/asm-x86/hvm/hvm.h +++ b/xen/include/asm-x86/hvm/hvm.h @@ -165,7 +165,7 @@ hvm_long_mode_enabled(struct vcpu *v) return hvm_funcs.long_mode_enabled(v); } #else -#define hvm_long_mode_enabled(v) 0 +#define hvm_long_mode_enabled(v) (v,0) #endif static inline int -- 2.30.2